home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / elecmail / uupc11ys.zip / MAIL / SYSALIAS.H < prev   
C/C++ Source or Header  |  1993-04-10  |  2KB  |  45 lines

  1. /*--------------------------------------------------------------------*/
  2. /*    S y s A l i a s . H                                             */
  3. /*                                                                    */
  4. /*    System wide alias support for UUPC/extended                     */
  5. /*--------------------------------------------------------------------*/
  6.  
  7. /*--------------------------------------------------------------------*/
  8. /*    Changes Copyright (c) 1990-1993 by Kendra Electronic            */
  9. /*    Wonderworks.                                                    */
  10. /*                                                                    */
  11. /*    All rights reserved except those explicitly granted by the      */
  12. /*    UUPC/extended license agreement.                                */
  13. /*--------------------------------------------------------------------*/
  14.  
  15. /*--------------------------------------------------------------------*/
  16. /*                          RCS Information                           */
  17. /*--------------------------------------------------------------------*/
  18.  
  19. /*
  20.  *    $Id: SYSALIAS.H 1.2 1993/04/11 00:36:13 ahd Exp $
  21.  *
  22.  *    $Log: SYSALIAS.H $
  23.  * Revision 1.2  1993/04/11  00:36:13  ahd
  24.  * Global edits for year, TEXT, etc.
  25.  *
  26.  * Revision 1.1  1992/12/04  01:03:49  ahd
  27.  * Initial revision
  28.  *
  29.  */
  30.  
  31. /*--------------------------------------------------------------------*/
  32. /*    System alias table; includes name of alias, and start and       */
  33. /*    end position of alias data in the system alias file             */
  34. /*--------------------------------------------------------------------*/
  35.  
  36. typedef struct _ALIASTABLE {
  37.       char *alias;
  38.       long start;
  39.       long end;
  40.       } ALIASTABLE;
  41.  
  42. extern char *SysAliases;      /* Name of system alias file           */
  43.  
  44. ALIASTABLE *checkalias( const char *user );
  45.